home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / c / ExtrasLib.lha / ExtrasLib / Source / bases.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-30  |  543 b   |  24 lines

  1. #define DEBUG
  2. #include <debug.h>
  3.  
  4. #include <clib/extras_protos.h>
  5.  
  6. #include <proto/diskfont.h>
  7. #include <proto/dos.h>
  8. #include <proto/exec.h>
  9. #include <proto/gadtools.h>
  10. #include <proto/graphics.h>
  11. #include <proto/intuition.h>
  12. #include <proto/utility.h>
  13.  
  14. void Bases(void)
  15. {
  16.   DKP("DiskfontBase   =%8lx\n",DiskfontBase);
  17.   DKP("DOSBase        =%8lx\n",DOSBase);
  18.   DKP("GadToolsBase   =%8lx\n",GadToolsBase);
  19.   DKP("GfxBase        =%8lx\n",GfxBase);
  20.   DKP("IntuitionBase  =%8lx\n",IntuitionBase);
  21.   DKP("UtilityBase    =%8lx\n",UtilityBase);
  22. }
  23.  
  24.